Amber's Digital Garden

UStruct Operator Overload

Do this in a struct to enable comparisons when working with them


FORCEINLINE bool operator==(const FSomeType &Other) const  
{  
    return this->SomeVariable == Other.SomeVariable;  
}

by amber